翻訳と辞書
Words near each other
・ Automatic toothpaste dispenser
・ Automatic train control
・ Automatic train operation
・ Automatic train protection
・ Automatic train stop
・ Automatic transfer service account
・ Automatic transmission
・ Automatic transmission fluid
・ Automatic transmission system
・ Automatic Transmitter Identification System
・ Automatic Transmitter Identification System (marine)
・ Automatic Transmitter Identification System (television)
・ Automatic trip
・ Automatic variable
・ Automatic Vaudeville Studios
Automatic vectorization
・ Automatic vehicle location
・ Automatic vehicle tracking
・ Automatic visa revalidation
・ Automatic volume limiter system
・ Automatic warning system (railways)
・ Automatic waste container
・ Automatic watch
・ Automatic weather station
・ Automatic writing
・ Automatic Writing (album)
・ Automatic-tracking satellite dish
・ Automatically Sunshine
・ Automatically switched optical network
・ Automatically Tuned Linear Algebra Software


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Automatic vectorization : ウィキペディア英語版
Automatic vectorization

Automatic vectorization, in parallel computing, is a special case of automatic parallelization, where a computer program is converted from a scalar implementation, which processes a single pair of operands at a time, to a vector implementation, which processes one operation on multiple pairs of operands at once. For example, modern conventional computers, including specialized supercomputers, typically have vector operations that simultaneously perform operations such as the following four additions:
:\begin
c_1 & = a_1 + b_1 \\
c_2 & = a_2 + b_2 \\
c_3 & = a_3 + b_3 \\
c_4 & = a_4 + b_4
\end
However, in most programming languages one typically writes loops that sequentially perform additions of many numbers. Here is an example of such a loop, written in C:

for (i=0; i c() = a() + b();

A vectorizing compiler transforms such loops into sequences of vector operations. These vector operations perform additions on length-four (in our example) blocks of elements from the arrays a, b and c. Automatic vectorization is a major research topic in computer science.
==Background==
Early computers generally had one logic unit that sequentially executed one instruction on one operand pair at a time. Computer programs and programming languages were accordingly designed to execute sequentially. Modern computers can do many things at once. Many optimizing compilers feature auto-vectorization, a compiler feature where particular parts of sequential programs are transformed into equivalent parallel ones, to produce code which will well utilize a vector processor. For a compiler to produce such efficient code for a programming language intended for use on a vector-processor would be much simpler, but, as much real-world code is sequential, the optimization is of great utility.
Loop vectorization converts procedural loops that iterate over multiple pairs of data items and assigns a separate processing unit to each pair. Most programs spend most of their execution times within such loops. Vectorizing loops can lead to significant performance gains without programmer intervention, especially on large data sets. Vectorization can sometimes instead slow execution because of pipeline synchronization, data movement timing and other issues.
Intel's MMX, SSE, AVX and Power Architecture's AltiVec and ARM's NEON instruction sets support such vectorized loops.
Many constraints prevent or hinder vectorization. Loop dependence analysis identifies loops that can be vectorized, relying on the data dependence of the instructions inside loops.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Automatic vectorization」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.